I want to use IEnumerable
In C# please give me solutions
What is IEnumerable In C#.
1829
06-Nov-2015
Anonymous User
06-Nov-2015The IEnumerable<T> is used to iterate a read only collection. It has only one method GetEnumeartor() which allows you to iterate the read only collection using a foreach loop. It only iterates in the forward direction. IEnumerable <T> is defined in as follows: